home *** CD-ROM | disk | FTP | other *** search
- Open(FileName : TEXT);
-
- Opens a file for reading.
-
- GetFile(VAR FileName : TEXT);
-
- Displays the standard Macintosh file dialog which requests the user to select a text file.
-
- Read(VAR V1, V2, ..., Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Reads data from the currently open text file.
-
- ReadLn(VAR V1, V2, ..., Vn : INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Reads data from the currently open text file and skips to the beginning of the next line of data.
-
- EOF(Filename : TEXT) : BOOLEAN;
-
- Returns TRUE if the reading pointer of an open file has reached the end of the file.
-
- EOLN(FileName : TEXT) : BOOLEAN;
-
- Returns TRUE if the reading pointer of an open file has reached a carriage return.
-
- Rewrite(FileName : TEXT);
-
- Creates a new file or clears an existing one for writing.
-
- PutFile(CommentStr, FileDefault : STRING; VAR FileName : TEXT);
-
- Displays the standard Macintosh file dialog which requests the user to select a text file for output.
-
- Append(FileName : TEXT);
-
- Allows the user to add text information to the end of a text file.
-
- Close(FileName : TEXT);
-
- Closes a currently open text file.
-
- Write(V1, V2, ..., Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Writes data to a text file.
-
- WriteLn(V1,V2,...,Vn: INTEGER or REAL or LONGINT or CHAR or STRING);
-
- Writes data to a text file followed by a carriage return.
-
-